* doc/lispref/variables.texi (Lexical Binding): Fix typo.
authorGlenn Morris <rgm@gnu.org>
Wed, 12 Jun 2013 01:25:53 +0000 (21:25 -0400)
committerGlenn Morris <rgm@gnu.org>
Wed, 12 Jun 2013 01:25:53 +0000 (21:25 -0400)
doc/lispref/ChangeLog
doc/lispref/variables.texi

index ef2bf9748bd6c6bdaa80162c313c179d150c8c12..49d7f371f39573f1097c5a08052198016cbc8ba5 100644 (file)
@@ -1,5 +1,7 @@
 2013-06-12  Glenn Morris  <rgm@gnu.org>
 
+       * variables.texi (Lexical Binding): Fix typo.
+
        * functions.texi (Anonymous Functions): Put back ' removed 2012-10-23.
 
 2013-03-12  Glenn Morris  <rgm@gnu.org>
index 4bcf7985f0c64c4d37e9c0273d98e175168b5761..4a38fa9ccd5c246140bf575995669b2dbc6acee6 100644 (file)
@@ -988,7 +988,7 @@ Here is an example:
   (setq my-ticker (lambda ()
                     (setq x (1+ x)))))
     @result{} (closure ((x . 0) t) ()
-          (1+ x))
+          (setq x (1+ x)))
 
 (funcall my-ticker)
     @result{} 1